home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / pyshared / PIL / PalmImagePlugin.py < prev    next >
Text File  |  2006-12-03  |  10KB  |  227 lines

  1. #
  2. # The Python Imaging Library.
  3. # $Id: PalmImagePlugin.py 2438 2005-05-25 21:09:48Z Fredrik $
  4. #
  5.  
  6. ##
  7. # Image plugin for Palm pixmap images (output only).
  8. ##
  9.  
  10. __version__ = "1.0"
  11.  
  12. import Image, ImageFile
  13. import StringIO
  14.  
  15. _Palm8BitColormapValues = (
  16.     ( 255, 255, 255 ), ( 255, 204, 255 ), ( 255, 153, 255 ), ( 255, 102, 255 ),
  17.     ( 255,  51, 255 ), ( 255,   0, 255 ), ( 255, 255, 204 ), ( 255, 204, 204 ),
  18.     ( 255, 153, 204 ), ( 255, 102, 204 ), ( 255,  51, 204 ), ( 255,   0, 204 ),
  19.     ( 255, 255, 153 ), ( 255, 204, 153 ), ( 255, 153, 153 ), ( 255, 102, 153 ),
  20.     ( 255,  51, 153 ), ( 255,   0, 153 ), ( 204, 255, 255 ), ( 204, 204, 255 ),
  21.     ( 204, 153, 255 ), ( 204, 102, 255 ), ( 204,  51, 255 ), ( 204,   0, 255 ),
  22.     ( 204, 255, 204 ), ( 204, 204, 204 ), ( 204, 153, 204 ), ( 204, 102, 204 ),
  23.     ( 204,  51, 204 ), ( 204,   0, 204 ), ( 204, 255, 153 ), ( 204, 204, 153 ),
  24.     ( 204, 153, 153 ), ( 204, 102, 153 ), ( 204,  51, 153 ), ( 204,   0, 153 ),
  25.     ( 153, 255, 255 ), ( 153, 204, 255 ), ( 153, 153, 255 ), ( 153, 102, 255 ),
  26.     ( 153,  51, 255 ), ( 153,   0, 255 ), ( 153, 255, 204 ), ( 153, 204, 204 ),
  27.     ( 153, 153, 204 ), ( 153, 102, 204 ), ( 153,  51, 204 ), ( 153,   0, 204 ),
  28.     ( 153, 255, 153 ), ( 153, 204, 153 ), ( 153, 153, 153 ), ( 153, 102, 153 ),
  29.     ( 153,  51, 153 ), ( 153,   0, 153 ), ( 102, 255, 255 ), ( 102, 204, 255 ),
  30.     ( 102, 153, 255 ), ( 102, 102, 255 ), ( 102,  51, 255 ), ( 102,   0, 255 ),
  31.     ( 102, 255, 204 ), ( 102, 204, 204 ), ( 102, 153, 204 ), ( 102, 102, 204 ),
  32.     ( 102,  51, 204 ), ( 102,   0, 204 ), ( 102, 255, 153 ), ( 102, 204, 153 ),
  33.     ( 102, 153, 153 ), ( 102, 102, 153 ), ( 102,  51, 153 ), ( 102,   0, 153 ),
  34.     (  51, 255, 255 ), (  51, 204, 255 ), (  51, 153, 255 ), (  51, 102, 255 ),
  35.     (  51,  51, 255 ), (  51,   0, 255 ), (  51, 255, 204 ), (  51, 204, 204 ),
  36.     (  51, 153, 204 ), (  51, 102, 204 ), (  51,  51, 204 ), (  51,   0, 204 ),
  37.     (  51, 255, 153 ), (  51, 204, 153 ), (  51, 153, 153 ), (  51, 102, 153 ),
  38.     (  51,  51, 153 ), (  51,   0, 153 ), (   0, 255, 255 ), (   0, 204, 255 ),
  39.     (   0, 153, 255 ), (   0, 102, 255 ), (   0,  51, 255 ), (   0,   0, 255 ),
  40.     (   0, 255, 204 ), (   0, 204, 204 ), (   0, 153, 204 ), (   0, 102, 204 ),
  41.     (   0,  51, 204 ), (   0,   0, 204 ), (   0, 255, 153 ), (   0, 204, 153 ),
  42.     (   0, 153, 153 ), (   0, 102, 153 ), (   0,  51, 153 ), (   0,   0, 153 ),
  43.     ( 255, 255, 102 ), ( 255, 204, 102 ), ( 255, 153, 102 ), ( 255, 102, 102 ),
  44.     ( 255,  51, 102 ), ( 255,   0, 102 ), ( 255, 255,  51 ), ( 255, 204,  51 ),
  45.     ( 255, 153,  51 ), ( 255, 102,  51 ), ( 255,  51,  51 ), ( 255,   0,  51 ),
  46.     ( 255, 255,   0 ), ( 255, 204,   0 ), ( 255, 153,   0 ), ( 255, 102,   0 ),
  47.     ( 255,  51,   0 ), ( 255,   0,   0 ), ( 204, 255, 102 ), ( 204, 204, 102 ),
  48.     ( 204, 153, 102 ), ( 204, 102, 102 ), ( 204,  51, 102 ), ( 204,   0, 102 ),
  49.     ( 204, 255,  51 ), ( 204, 204,  51 ), ( 204, 153,  51 ), ( 204, 102,  51 ),
  50.     ( 204,  51,  51 ), ( 204,   0,  51 ), ( 204, 255,   0 ), ( 204, 204,   0 ),
  51.     ( 204, 153,   0 ), ( 204, 102,   0 ), ( 204,  51,   0 ), ( 204,   0,   0 ),
  52.     ( 153, 255, 102 ), ( 153, 204, 102 ), ( 153, 153, 102 ), ( 153, 102, 102 ),
  53.     ( 153,  51, 102 ), ( 153,   0, 102 ), ( 153, 255,  51 ), ( 153, 204,  51 ),
  54.     ( 153, 153,  51 ), ( 153, 102,  51 ), ( 153,  51,  51 ), ( 153,   0,  51 ),
  55.     ( 153, 255,   0 ), ( 153, 204,   0 ), ( 153, 153,   0 ), ( 153, 102,   0 ),
  56.     ( 153,  51,   0 ), ( 153,   0,   0 ), ( 102, 255, 102 ), ( 102, 204, 102 ),
  57.     ( 102, 153, 102 ), ( 102, 102, 102 ), ( 102,  51, 102 ), ( 102,   0, 102 ),
  58.     ( 102, 255,  51 ), ( 102, 204,  51 ), ( 102, 153,  51 ), ( 102, 102,  51 ),
  59.     ( 102,  51,  51 ), ( 102,   0,  51 ), ( 102, 255,   0 ), ( 102, 204,   0 ),
  60.     ( 102, 153,   0 ), ( 102, 102,   0 ), ( 102,  51,   0 ), ( 102,   0,   0 ),
  61.     (  51, 255, 102 ), (  51, 204, 102 ), (  51, 153, 102 ), (  51, 102, 102 ),
  62.     (  51,  51, 102 ), (  51,   0, 102 ), (  51, 255,  51 ), (  51, 204,  51 ),
  63.     (  51, 153,  51 ), (  51, 102,  51 ), (  51,  51,  51 ), (  51,   0,  51 ),
  64.     (  51, 255,   0 ), (  51, 204,   0 ), (  51, 153,   0 ), (  51, 102,   0 ),
  65.     (  51,  51,   0 ), (  51,   0,   0 ), (   0, 255, 102 ), (   0, 204, 102 ),
  66.     (   0, 153, 102 ), (   0, 102, 102 ), (   0,  51, 102 ), (   0,   0, 102 ),
  67.     (   0, 255,  51 ), (   0, 204,  51 ), (   0, 153,  51 ), (   0, 102,  51 ),
  68.     (   0,  51,  51 ), (   0,   0,  51 ), (   0, 255,   0 ), (   0, 204,   0 ),
  69.     (   0, 153,   0 ), (   0, 102,   0 ), (   0,  51,   0 ), (  17,  17,  17 ),
  70.     (  34,  34,  34 ), (  68,  68,  68 ), (  85,  85,  85 ), ( 119, 119, 119 ),
  71.     ( 136, 136, 136 ), ( 170, 170, 170 ), ( 187, 187, 187 ), ( 221, 221, 221 ),
  72.     ( 238, 238, 238 ), ( 192, 192, 192 ), ( 128,   0,   0 ), ( 128,   0, 128 ),
  73.     (   0, 128,   0 ), (   0, 128, 128 ), (   0,   0,   0 ), (   0,   0,   0 ),
  74.     (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ),
  75.     (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ),
  76.     (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ),
  77.     (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ),
  78.     (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ),
  79.     (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ), (   0,   0,   0 ))
  80.  
  81. # so build a prototype image to be used for palette resampling
  82. def build_prototype_image():
  83.     image = Image.new("L", (1,len(_Palm8BitColormapValues),))
  84.     image.putdata(range(len(_Palm8BitColormapValues)))
  85.     palettedata = ()
  86.     for i in range(len(_Palm8BitColormapValues)):
  87.         palettedata = palettedata + _Palm8BitColormapValues[i]
  88.     for i in range(256 - len(_Palm8BitColormapValues)):
  89.         palettedata = palettedata + (0, 0, 0)
  90.     image.putpalette(palettedata)
  91.     return image
  92.  
  93. Palm8BitColormapImage = build_prototype_image()
  94.  
  95. # OK, we now have in Palm8BitColormapImage, a "P"-mode image with the right palette
  96. #
  97. # --------------------------------------------------------------------
  98.  
  99. _FLAGS = {
  100.     "custom-colormap": 0x4000,
  101.     "is-compressed":   0x8000,
  102.     "has-transparent": 0x2000,
  103.     }
  104.  
  105. _COMPRESSION_TYPES = {
  106.     "none":     0xFF,
  107.     "rle":      0x01,
  108.     "scanline": 0x00,
  109.     }
  110.  
  111. def o16b(i):
  112.     return chr(i>>8&255) + chr(i&255)
  113.  
  114. #
  115. # --------------------------------------------------------------------
  116.  
  117. ##
  118. # (Internal) Image save plugin for the Palm format.
  119.  
  120. def _save(im, fp, filename, check=0):
  121.  
  122.     if im.mode == "P":
  123.  
  124.         # we assume this is a color Palm image with the standard colormap,
  125.         # unless the "info" dict has a "custom-colormap" field
  126.  
  127.         rawmode = "P"
  128.         bpp = 8
  129.         version = 1
  130.  
  131.     elif im.mode == "L" and im.encoderinfo.has_key("bpp") and im.encoderinfo["bpp"] in (1, 2, 4):
  132.  
  133.         # this is 8-bit grayscale, so we shift it to get the high-order bits, and invert it because
  134.         # Palm does greyscale from white (0) to black (1)
  135.         bpp = im.encoderinfo["bpp"]
  136.         im = im.point(lambda x, shift=8-bpp, maxval=(1 << bpp)-1: maxval - (x >> shift))
  137.         # we ignore the palette here
  138.         im.mode = "P"
  139.         rawmode = "P;" + str(bpp)
  140.         version = 1
  141.  
  142.     elif im.mode == "L" and im.info.has_key("bpp") and im.info["bpp"] in (1, 2, 4):
  143.  
  144.         # here we assume that even though the inherent mode is 8-bit grayscale, only
  145.         # the lower bpp bits are significant.  We invert them to match the Palm.
  146.         bpp = im.info["bpp"]
  147.         im = im.point(lambda x, maxval=(1 << bpp)-1: maxval - (x & maxval))
  148.         # we ignore the palette here
  149.         im.mode = "P"
  150.         rawmode = "P;" + str(bpp)
  151.         version = 1
  152.  
  153.     elif im.mode == "1":
  154.  
  155.         # monochrome -- write it inverted, as is the Palm standard
  156.         rawmode = "1;I"
  157.         bpp = 1
  158.         version = 0
  159.  
  160.     else:
  161.  
  162.         raise IOError, "cannot write mode %s as Palm" % im.mode
  163.  
  164.     if check:
  165.         return check
  166.  
  167.     #
  168.     # make sure image data is available
  169.     im.load()
  170.  
  171.     # write header
  172.  
  173.     cols = im.size[0]
  174.     rows = im.size[1]
  175.  
  176.     rowbytes = ((cols + (16/bpp - 1)) / (16 / bpp)) * 2;
  177.     transparent_index = 0
  178.     compression_type = _COMPRESSION_TYPES["none"]
  179.  
  180.     flags = 0;
  181.     if im.mode == "P" and im.info.has_key("custom-colormap"):
  182.         flags = flags & _FLAGS["custom-colormap"]
  183.         colormapsize = 4 * 256 + 2;
  184.         colormapmode = im.palette.mode
  185.         colormap = im.getdata().getpalette()
  186.     else:
  187.         colormapsize = 0
  188.  
  189.     if im.info.has_key("offset"):
  190.         offset = (rowbytes * rows + 16 + 3 + colormapsize) / 4;
  191.     else:
  192.         offset = 0
  193.  
  194.     fp.write(o16b(cols) + o16b(rows) + o16b(rowbytes) + o16b(flags))
  195.     fp.write(chr(bpp))
  196.     fp.write(chr(version))
  197.     fp.write(o16b(offset))
  198.     fp.write(chr(transparent_index))
  199.     fp.write(chr(compression_type))
  200.     fp.write(o16b(0))   # reserved by Palm
  201.  
  202.     # now write colormap if necessary
  203.  
  204.     if colormapsize > 0:
  205.         fp.write(o16b(256))
  206.         for i in range(256):
  207.             fp.write(chr(i))
  208.             if colormapmode == 'RGB':
  209.                 fp.write(chr(colormap[3 * i]) + chr(colormap[3 * i + 1]) + chr(colormap[3 * i + 2]))
  210.             elif colormapmode == 'RGBA':
  211.                 fp.write(chr(colormap[4 * i]) + chr(colormap[4 * i + 1]) + chr(colormap[4 * i + 2]))
  212.  
  213.     # now convert data to raw form
  214.     ImageFile._save(im, fp, [("raw", (0,0)+im.size, 0, (rawmode, rowbytes, 1))])
  215.  
  216.     fp.flush()
  217.  
  218.  
  219. #
  220. # --------------------------------------------------------------------
  221.  
  222. Image.register_save("Palm", _save)
  223.  
  224. Image.register_extension("Palm", ".palm")
  225.  
  226. Image.register_mime("Palm", "image/palm")
  227.